number to character c#

87

how to convert int to char in c# -

int i = 65;
char c = Convert.ToChar(i);

number to character c# -

(char)myint;

Comments

Submit
0 Comments